home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / Tokenize.p < prev    next >
Text File  |  1996-05-01  |  2KB  |  76 lines

  1. {
  2.      File:        Tokenize.p
  3.  
  4.      Contains:    Text Services Manager Tokenizer interfaces
  5.  
  6.      Version:    Technology:    System 8.0
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT Tokenize;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __TOKENIZE__}
  28. {$SETC __TOKENIZE__ := 1}
  29.  
  30. {$I+}
  31. {$SETC TokenizeIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37. {$IFC UNDEFINED __TEXTOBJECTS__}
  38. {$I TextObjects.p}
  39. {$ENDC}
  40. {$IFC UNDEFINED __TEXTSERVICES__}
  41. {$I TextServices.p}
  42. {$ENDC}
  43.  
  44. {$PUSH}
  45. {$ALIGN MAC68K}
  46. {$LibExport+}
  47.  
  48. {$IFC FOR_SYSTEM8_PREEMPTIVE }
  49.  
  50. CONST
  51.     kTKNNoControlFlags            = 0;
  52.     kTKNSplitTextStreamFlag        = 1;
  53.  
  54. {
  55.  *
  56.  * Tokenize Functions 
  57.  *
  58. }
  59. FUNCTION TKNSetTextRun(context: TSMContext; run: TextObject): OSStatus; C;
  60. FUNCTION TKNGetTextRun(context: TSMContext; run: TextObject): OSStatus; C;
  61. FUNCTION TKNGetNextToken(context: TSMContext; token: TextObject): OSStatus; C;
  62. FUNCTION TKNGetTokenPosition(context: TSMContext; VAR theStart: TextObjectIndex; VAR theEnd: TextObjectIndex): OSStatus; C;
  63. FUNCTION TKNSetControlFlags(context: TSMContext; controlFlags: LONGINT): OSStatus; C;
  64. FUNCTION TKNGetControlFlags(context: TSMContext; VAR controlFlags: LONGINT): OSStatus; C;
  65. {$ENDC}
  66. {$ALIGN RESET}
  67. {$POP}
  68.  
  69. {$SETC UsingIncludes := TokenizeIncludes}
  70.  
  71. {$ENDC} {__TOKENIZE__}
  72.  
  73. {$IFC NOT UsingIncludes}
  74.  END.
  75. {$ENDC}
  76.